home *** CD-ROM | disk | FTP | other *** search
- /* Demonstrates use of both functions from any dialect of C that accepts
- * the "pascal" and "far" keywords. Both Microsoft and Borland products
- * recognize these.
- */
- #include <stdio.h>
- extern int pascal far Buffers( void );
- extern int pascal far NFiles( void );
-
- void main( void )
- { printf( "\nThis system is configured for %i files and %i buffers.\n",
- NFiles(),
- Buffers() );
- }